home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / DoubleValueSortedList.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  474 b   |  30 lines

  1.  
  2. /* $Id: DoubleValueSortedList.h,v 1.1.1.1 1993/03/18 03:31:37 davis Exp $ */
  3.  
  4. #import <objc/List.h>
  5.  
  6. @interface DoubleValueSortedList:List
  7. {
  8.     BOOL    isAscending;    /* YES = Ascending, NO = Descending        */
  9. }
  10.  
  11. - init;
  12.  
  13. - setAscending:(BOOL)aBool;
  14. - (BOOL)isAscending;
  15.  
  16. - addObject:anObject;
  17.  
  18.  
  19. /** Overridden to do nothing **/
  20.  
  21. - insertObject:anObject at:(unsigned)index;
  22. - replaceObjectAt:(unsigned) index with:newObject;
  23.  
  24.  
  25. /** Private Methods **/
  26.  
  27. - _reorderObjects;
  28.  
  29. @end
  30.